summaryrefslogtreecommitdiffhomepage
path: root/src/gameinfo.c
diff options
context:
space:
mode:
authorMichael Smith <mikesmiffy128@gmail.com>2023-04-08 12:18:53 +0100
committerMichael Smith <mikesmiffy128@gmail.com>2023-04-08 12:21:30 +0100
commite7962fa5ea4e0399bea7d16d08beb29e76c48ff0 (patch)
tree57babf41da45b28b02de24826553e88814431477 /src/gameinfo.c
parent3e4c26eeb701d96aa73bd482d48140f229cd9079 (diff)
Fix some miscellaneous stupid bugs and jank
Note: fixes.c was changed this year, so correct the copyright year too.
Diffstat (limited to 'src/gameinfo.c')
-rw-r--r--src/gameinfo.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gameinfo.c b/src/gameinfo.c
index f8b5311..086ab8b 100644
--- a/src/gameinfo.c
+++ b/src/gameinfo.c
@@ -1,5 +1,5 @@
/*
- * Copyright © 2022 Michael Smith <mikesmiffy128@gmail.com>
+ * Copyright © 2023 Michael Smith <mikesmiffy128@gmail.com>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@@ -271,12 +271,12 @@ bool gameinfo_init(void) {
gameinfo_gamedir = GetGameDirectory(engclient);
int gamedirlen = strlen(gameinfo_gamedir);
#endif
- if (gamedirlen + sizeof("/gameinfo.txt") > sizeof(gamedir) /
- sizeof(*gamedir)) {
+ os_char gameinfopath[PATH_MAX];
+ if (gamedirlen + sizeof("/gameinfo.txt") > sizeof(gameinfopath) /
+ sizeof(*gameinfopath)) {
errmsg_errorx("game directory path is too long!");
return false;
}
- os_char gameinfopath[PATH_MAX];
memcpy(gameinfopath, gameinfo_gamedir, gamedirlen *
sizeof(*gameinfo_gamedir));
memcpy(gameinfopath + gamedirlen, PATHSEP OS_LIT("gameinfo.txt"),