Skip to content

Commit

Permalink
[lib] Fixed class 2 record macro name
Browse files Browse the repository at this point in the history
  • Loading branch information
mta452 committed Oct 25, 2018
1 parent 92a7f6e commit 6155394
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Source/SFGPOS.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ enum {
+ SFValueFormat_Reserved(format) \
)

#define SFValueRecord_NextValue(data, offset) SFData_UInt16(data, offset), (offset += 2)
#define SFValueRecord_Size(format) \
( \
(format) \
Expand Down Expand Up @@ -139,7 +138,7 @@ enum {
#define SFClass1Record_Class2Record(data, index, c2Size)\
SFData_Subdata(data, (index) * (c2Size))

#define SFClass2Record_Value(v1Size, v2Size) ((v1Size) + (v2Size))
#define SFClass2Record_Size(v1Size, v2Size) ((v1Size) + (v2Size))
#define SFClass2Record_Value1(data) SFData_Subdata(data, 0)
#define SFClass2Record_Value2(data, v1Size) SFData_Subdata(data, v1Size)

Expand Down

0 comments on commit 6155394

Please sign in to comment.