aboutsummaryrefslogtreecommitdiff
path: root/srb_lib.py
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2024-04-04 22:25:46 -0400
committerB. Stack <bgstack15@gmail.com>2024-04-04 22:25:46 -0400
commitea79d0074bbf4285e1b29d389150309a569026a4 (patch)
tree16842afd14b43f110a09e6dc7a7dbdc33e760197 /srb_lib.py
parentadd set-profile-in-use (diff)
downloadsrb_lib-ea79d0074bbf4285e1b29d389150309a569026a4.tar.gz
srb_lib-ea79d0074bbf4285e1b29d389150309a569026a4.tar.bz2
srb_lib-ea79d0074bbf4285e1b29d389150309a569026a4.zip
tk: moved flash_entry to lib, added frame_backgrounds checkbox
Diffstat (limited to 'srb_lib.py')
-rw-r--r--srb_lib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/srb_lib.py b/srb_lib.py
index 7acda8b..f7f79a5 100644
--- a/srb_lib.py
+++ b/srb_lib.py
@@ -28,7 +28,7 @@
# Dependencies:
import sys, struct
-srb_lib_version = "20240331c"
+srb_lib_version = "20240404a"
# Table of byte positions of values in the savegame file, minus the first four bytes which are the checksum. Due to zero-indexing of python lists, but for ease of usage, we will always put a zero as the value of index 0. That is, profile 1 will use index 1 of the list.
# "Z<dddddddd" is the start of a profile.
bgstack15