Minor cleanup for formatting, reverse verify condition usage

Verify condition needed to only fire off if false not the other way around.
This commit is contained in:
2024-02-23 09:36:23 -05:00
parent 9b3bc6fd68
commit a00ba8a152
21 changed files with 103 additions and 86 deletions

View File

@ -8,10 +8,10 @@ import "core:strings"
import "core:unicode/utf8"
import rl "vendor:raylib"
kilobytes :: proc ( kb : $integer_type ) -> integer_type {
kilobytes :: proc( kb : $integer_type ) -> integer_type {
return kb * 1024
}
megabytes :: proc ( kb : $integer_type ) -> integer_type {
megabytes :: proc( kb : $integer_type ) -> integer_type {
return kb * 1024 * 1024
}