mirror of
https://github.com/zeldaret/st
synced 2026-08-04 09:09:03 -04:00
Decompile ActorManager_001.cpp (#31)
* started ActorManager_001.cpp * create, ctor, dtor * prog * fix build * fix build issues * progress * struct comments * match ClearInstance
This commit is contained in:
@@ -47,4 +47,8 @@
|
||||
#define SUBSCREEN_WIDTH 256
|
||||
#define SUBSCREEN_HEIGHT 192
|
||||
|
||||
#define ALIGN_PREV(X, N) ((X) & ~((N) - 1))
|
||||
#define ALIGN_NEXT(X, N) ALIGN_PREV(((X) + (N) - 1), N)
|
||||
#define ALIGN(X, N) ((X + N) & ~N)
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user