aboutsummaryrefslogtreecommitdiff
path: root/core/_preload.odin
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2017-01-07 11:44:42 +0000
committerGinger Bill <bill@gingerbill.org>2017-01-07 11:44:42 +0000
commit703e1aa2bcf6bb059a3dd0e12a02cf02ed5449cf (patch)
treed67712be7ccd274efa9f0042415356e769b12dec /core/_preload.odin
parentb1e35b6da3e335376339965ad2e26d7e275de3c5 (diff)
Fix core library; Disable adding entity definitions for blank identifiersv0.0.5e
Diffstat (limited to 'core/_preload.odin')
-rw-r--r--core/_preload.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/_preload.odin b/core/_preload.odin
index d65f3d8e4..0d73e5462 100644
--- a/core/_preload.odin
+++ b/core/_preload.odin
@@ -308,7 +308,7 @@ __bounds_check_error :: proc(file: string, line, column: int, index, count: int)
if 0 <= index && index < count {
return;
}
- fmt.fprintf(os.stderr, "%(%:%) Index % is out of bounds range [0, %)\n",
+ fmt.fprintf(os.stderr, "%(%:%) Index % is out of bounds range 0..<%\n",
file, line, column, index, count);
__debug_trap();
}