1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-25 13:57:45 +00:00

Oops, forgot to fix string_to_category

This commit is contained in:
Joshua Goins 2022-08-09 19:39:31 -04:00
parent e1b3c78e0d
commit 6173ce422f

View file

@ -103,10 +103,10 @@ pub fn string_to_category(string: &str) -> Option<Category> {
match string {
"common" => Some(Common),
"bgcommon" => Some(BgCommon),
"bg" => Some(Bg),
"cut" => Some(Cut),
"chara" => Some(Chara),
"bgcommon" => Some(BackgroundCommon),
"bg" => Some(Background),
"cut" => Some(Cutscene),
"chara" => Some(Character),
"shader" => Some(Shader),
"ui" => Some(UI),
"sound" => Some(Sound),