comparison tools/lib64fmts.c @ 2033:cf966e66c9af

Indentation.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 27 Nov 2018 13:40:31 +0200
parents 1c45b2fb471d
children c27ed6465022
comparison
equal deleted inserted replaced
2032:5fe25336a474 2033:cf966e66c9af
1082 1082
1083 // 1083 //
1084 // Helper macros for defining screen memory layouts 1084 // Helper macros for defining screen memory layouts
1085 // common for several FLI type image formats 1085 // common for several FLI type image formats
1086 // 1086 //
1087 #define DEF_SCREEN_RAM(start, oindex, bindex, osize, bsize) { DO_COPY, DS_SCREEN_RAM, (start) + ((osize) * (oindex)), (bindex), (bsize), 0, NULL, NULL } 1087 #define DEF_SCREEN_RAM(start, oindex, bindex, osize, bsize) \
1088 { DO_COPY, DS_SCREEN_RAM, (start) + ((osize) * (oindex)), (bindex), (bsize), 0, NULL, NULL }
1089
1088 #define DEF_SCREEN_RAMS_8(start, sindex, osize, bsize) \ 1090 #define DEF_SCREEN_RAMS_8(start, sindex, osize, bsize) \
1089 DEF_SCREEN_RAM((start), 0, (sindex + 0), (osize), (bsize)), \ 1091 DEF_SCREEN_RAM((start), 0, (sindex + 0), (osize), (bsize)), \
1090 DEF_SCREEN_RAM((start), 1, (sindex + 1), (osize), (bsize)), \ 1092 DEF_SCREEN_RAM((start), 1, (sindex + 1), (osize), (bsize)), \
1091 DEF_SCREEN_RAM((start), 2, (sindex + 2), (osize), (bsize)), \ 1093 DEF_SCREEN_RAM((start), 2, (sindex + 2), (osize), (bsize)), \
1092 DEF_SCREEN_RAM((start), 3, (sindex + 3), (osize), (bsize)), \ 1094 DEF_SCREEN_RAM((start), 3, (sindex + 3), (osize), (bsize)), \