From 6173ce422f030613e0ff5931d3449b602ab8eeb8 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Tue, 9 Aug 2022 19:39:31 -0400 Subject: [PATCH] Oops, forgot to fix string_to_category --- src/repository.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/repository.rs b/src/repository.rs index 3e8f515..d064d1b 100755 --- a/src/repository.rs +++ b/src/repository.rs @@ -103,10 +103,10 @@ pub fn string_to_category(string: &str) -> Option { 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),