You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
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) {
|
||||
|
||||
@@ -62,7 +62,7 @@ class SteamTracker {
|
||||
SteamAPI_InitFunction steam_init_function = nullptr;
|
||||
SteamAPI_InitFlatFunction steam_init_flat_function = nullptr;
|
||||
SteamAPI_ShutdownFunction steam_shutdown_function = nullptr;
|
||||
bool steam_initalized = false;
|
||||
bool steam_initialized = false;
|
||||
|
||||
public:
|
||||
SteamTracker();
|
||||
|
||||
Reference in New Issue
Block a user