mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
fix cell scroll drawing
This commit is contained in:
parent
c041308933
commit
cf07a88d6e
6 changed files with 48 additions and 17 deletions
|
@ -18,6 +18,9 @@
|
|||
#define DUMP_EST(f, field) \
|
||||
DUMP(f, "OFS_EST_", struct PicoEState, field)
|
||||
|
||||
#define DUMP_PMEM(f, field) \
|
||||
DUMP(f, "OFS_PMEM_", struct PicoMem, field)
|
||||
|
||||
extern struct Pico p;
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
|
@ -58,6 +61,8 @@ int main(int argc, char *argv[])
|
|||
DUMP_EST(f, PicoOpt);
|
||||
DUMP_EST(f, Draw2FB);
|
||||
DUMP_EST(f, HighPal);
|
||||
DUMP_PMEM(f, vram);
|
||||
DUMP_PMEM(f, vsram);
|
||||
fclose(f);
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue