diff --git a/public/images/emerald_launcher.png b/public/images/emerald_launcher.png new file mode 100644 index 0000000..671f9ad Binary files /dev/null and b/public/images/emerald_launcher.png differ diff --git a/src/components/views/SetupView.tsx b/src/components/views/SetupView.tsx index 36fb17c..ab9b448 100644 --- a/src/components/views/SetupView.tsx +++ b/src/components/views/SetupView.tsx @@ -2,7 +2,7 @@ import { useState, useEffect } from "react"; import { motion, AnimatePresence } from "framer-motion"; import { TauriService, Runner } from "../../services/TauriService"; import { usePlatform } from "../../hooks/usePlatform"; -import { useConfig, useAudio, useGame } from "../../context/LauncherContext"; +import { useConfig, useAudio } from "../../context/LauncherContext"; interface SetupViewProps { onComplete: () => void; } @@ -12,7 +12,6 @@ const SetupView: React.FC = ({ onComplete }) => { const { username, setUsername, setHasCompletedSetup, - profile, setVfxEnabled: setConfigVfx, setRpcEnabled: setConfigRpc, setLinuxRunner, @@ -22,8 +21,7 @@ const SetupView: React.FC = ({ onComplete }) => { animationsEnabled, } = useConfig(); const { playPressSound, playSfx } = useAudio(); - const { editions } = useGame(); - const titleImage = editions.find(e => e.id === profile)?.titleImage || "/images/MenuTitle.png"; + const titleImage = "/images/emerald_launcher.png"; const [currentStep, setCurrentStep] = useState(0); const [focusIndex, setFocusIndex] = useState(0); const [tempUsername, setTempUsername] = useState(username);