GUI: add Namco C163 chip name option

This commit is contained in:
tildearrow 2022-07-21 15:21:29 -05:00
parent 5aa287eece
commit f6b45d3d9b
6 changed files with 38 additions and 6 deletions

View file

@ -53,6 +53,11 @@ the coding style is described here:
- don't use `auto` unless needed.
- use `String` for `std::string` (this is typedef'd in ta-utils.h).
- prefer using operator for String (std::string) comparisons (a=="").
- if you have to work with C strings, only use safe C string operations:
- snprintf
- strncpy
- strncat
- any other operation which specifies a limit
some files (particularly the ones in `src/engine/platform/sound` and `extern/`) don't follow this style.