4 Commits

Author SHA1 Message Date
antopilo
993bc3ae43 Fixed latest compilation problems 2025-03-22 19:21:03 -04:00
Antoine Pilote
4d34b9978a Update FUNDING.yml 2025-02-01 01:20:58 -05:00
Antoine Pilote
4661c1f00e Update LICENSE 2024-12-06 22:14:24 -05:00
Antoine Pilote
b6721d036a Merge pull request #94 from antopilo/develop
Bumped to develop
2024-12-02 17:05:08 -05:00
4 changed files with 8 additions and 9 deletions

3
.github/FUNDING.yml vendored
View File

@@ -1,9 +1,8 @@
# These are supported funding model platforms # These are supported funding model platforms
patreon: # Replace with a single Patreon username patreon: nuakeengine # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username open_collective: # Replace with a single Open Collective username
ko_fi: antopilo # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username liberapay: # Replace with a single Liberapay username

View File

@@ -2048,10 +2048,10 @@ void EditorSelectionPanel::DrawFieldTypeString(entt::meta_data& field, entt::met
std::string controlId = std::string("##") + displayName; std::string controlId = std::string("##") + displayName;
ImGui::InputText(controlId.c_str(), &fieldValProxy); ImGui::InputText(controlId.c_str(), &fieldValProxy);
if (fieldValProxy != fieldVal) //if (fieldValProxy != fieldVal)
{ //{
Engine::GetProject()->IsDirty = true; // Engine::GetProject()->IsDirty = true;
} //}
} }
else else
{ {

View File

@@ -1,6 +1,6 @@
MIT License MIT License
Copyright (c) 2023 Antoine Pilote Copyright (c) 2023-2025 Antoine Pilote
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View File

@@ -84,7 +84,7 @@ bool katana_string_has_prefix(const char* str, const char* prefix)
{ {
size_t pre_len = strlen(prefix); size_t pre_len = strlen(prefix);
size_t str_len = strlen(str); size_t str_len = strlen(str);
return pre_len <= str_len && stricmp(prefix, str, pre_len); return pre_len <= str_len && stricmp(prefix, str);
} }
void katana_string_to_lowercase(struct KatanaInternalParser* parser, void katana_string_to_lowercase(struct KatanaInternalParser* parser,