1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-26 06:07: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 { match string {
"common" => Some(Common), "common" => Some(Common),
"bgcommon" => Some(BgCommon), "bgcommon" => Some(BackgroundCommon),
"bg" => Some(Bg), "bg" => Some(Background),
"cut" => Some(Cut), "cut" => Some(Cutscene),
"chara" => Some(Chara), "chara" => Some(Character),
"shader" => Some(Shader), "shader" => Some(Shader),
"ui" => Some(UI), "ui" => Some(UI),
"sound" => Some(Sound), "sound" => Some(Sound),