fox32os/kernel/window
jn ffdda5eaca Make use of data.strz
The filesystem image is the same before and after this commit:

$ sha256sum fox32os-orig.img fox32os.img
abc77bd6310b8eb6bcde0a8a442ca8bab071307a6cf5155ea606578435f77d27  fox32os-orig.img
abc77bd6310b8eb6bcde0a8a442ca8bab071307a6cf5155ea606578435f77d27  fox32os.img


The conversion was performed with a few sed commands:

find -name '*.asm' | xargs sed -i -e 's/data.str \("[^"]*"\) data.8 0$/data.strz \1/g'
find -name '*.asm' | xargs sed -i -e 's/data.str \("[^"]*"\) data.8 0 /data.strz \1 /g'
find -name '*.asm' | xargs sed -i -e 's/data.str \("[^"]*"\) data.8 0x00 /data.strz \1 /g'
2023-02-02 03:03:07 +01:00
..
event_manager_task.asm kernel: Always show the menu bar, even if the active window has none 2023-01-24 17:09:34 -08:00
event.asm kernel: Add a very basic GUI widget system 2022-12-27 18:01:55 -08:00
messagebox.asm Make use of data.strz 2023-02-02 03:03:07 +01:00
overlay.asm kernel: Fix clicking menu item when different window is directly under 2022-12-25 14:51:36 -08:00
window.asm kernel: Make get_active_window_struct return 0 if no active window 2023-01-24 17:18:12 -08:00