Fix various typos
* Add TODO notes for typos that should be fixed for 5.0 Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
This commit is contained in:
@ -92,14 +92,14 @@ SteamTracker::SteamTracker() {
|
||||
|
||||
if (steam_init_flat_function) {
|
||||
char err_msg[1024] = {};
|
||||
steam_initalized = (steam_init_flat_function(&err_msg[0]) == SteamAPIInitResult_OK);
|
||||
steam_initialized = (steam_init_flat_function(&err_msg[0]) == SteamAPIInitResult_OK);
|
||||
} else if (steam_init_function) {
|
||||
steam_initalized = steam_init_function();
|
||||
steam_initialized = steam_init_function();
|
||||
}
|
||||
}
|
||||
|
||||
SteamTracker::~SteamTracker() {
|
||||
if (steam_shutdown_function && steam_initalized) {
|
||||
if (steam_shutdown_function && steam_initialized) {
|
||||
steam_shutdown_function();
|
||||
}
|
||||
if (steam_library_handle) {
|
||||
|
||||
Reference in New Issue
Block a user