Skip to content

Commit

Permalink
Fixed TRGB32 (again....)
Browse files Browse the repository at this point in the history
Added "packed"
  • Loading branch information
JohnPeel committed Mar 6, 2014
1 parent 452544a commit 98d69b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Units/MMLAddon/LPInc/Classes/MML/lptmufasabitmap.pas
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ procedure Register_TMufasaBitmap(Compiler: TLapeCompiler);

addGlobalType('packed record B, G, R: UInt8; end;', 'TRGB24');
addGlobalType('^TRGB24', 'PRGB24');
addGlobalType('record B, G, R, A: UInt8; end;', 'TRGB32');
addGlobalType('packed record B, G, R, A: UInt8; end;', 'TRGB32');
addGlobalType('^TRGB32', 'PRGB32');
addGlobalType('array of TRGB32', 'TRGB32Array');
addGlobalType('^TRGB32Array', 'PRGB32Array');
Expand Down

0 comments on commit 98d69b4

Please sign in to comment.