ViMode progress (#802)

* ViMode OK

* Fix variable name in regconvert tool

* ViMode: fix formatting

* Add nonmatching impl for ViMode_Configure, respond to PR

- Fixed struct field naming (unkXX -> unk_XX)
- ViMode_Configure args are not flags for top/left etc; seem to be for
    video mode
- Used @Random06457's implementation of `ViMode_LogPrint`

* Use plain LOG_ADDRESS in ViMode_LogPrint

* Incorporate PR feedback from Roman971
This commit is contained in:
Zach Banks
2021-05-03 21:49:09 -04:00
committed by GitHub
parent 278e471074
commit 7c77253eca
14 changed files with 359 additions and 794 deletions
+1 -1
View File
@@ -54,7 +54,7 @@ def check_valid_index(index):
return 0x0 <= index <= 0xADF
def check_valid_offset(offset):
return 0x14 <= index <= 0x15D2
return 0x14 <= offset <= 0x15D2
def main():
parser = argparse.ArgumentParser(description="Converts a gGameInfo->data index to a REG macro.")