mirror of
https://github.com/rvtr/wiki.git
synced 2025-10-31 06:31:13 -04:00
36 lines
2.4 KiB
Markdown
36 lines
2.4 KiB
Markdown
---
|
|
lang: ko-KR
|
|
layout: faq
|
|
section: gbarunner2
|
|
title: 자주 묻는 질문 & 문제 해결하기
|
|
long_title: GBARunner2 자주 묻는 질문 & 문제 해결
|
|
description: GBARunner2에 관해 자주 묻는 질문과 문제 해결
|
|
---
|
|
|
|
#### 테두리를 커스텀하는 방법이 뭔가요?
|
|
FrescoASF가 작성한 [이 가이드](https://docs.google.com/document/d/1owjiW-1fHEbokrkK2ZuPFjR2-N9s1dXCCAM3ghWRtxk/edit?usp=sharing)를 읽고 따라해보세요.
|
|
|
|
#### 치트도 사용할 수 있나요?
|
|
아직은 사용할 수 없습니다. 대신에, [GBAATM](https://gbatemp.net/threads/gba-auto-trainer-maker-gbaatm.99334/)을 사용하여 GBA ROM에 치트 코드를 영구적으로 주입할 수 있습니다.
|
|
|
|
#### 나이틀리 GBARunner2 빌드를 TWiLight Menu++에서 사용할 수 있나요?
|
|
1. 나이틀리 빌드를 다운로드합니다.
|
|
1. 다운로드한 파일의 이름을 `GBARunner2_arm7dldi_3ds.nds` (DSi에서는 `GBARunner2_arm7dldi_dsi.nds`)로 변경해줍니다.
|
|
1. 해당 파일을 `sd:/_nds`에 놓습니다.
|
|
|
|
#### Which build of GBARunner2 should I use?
|
|
Usually, the builds that are included with TWiLight Menu++ is enough. For more information on the various builds of GBARunner, see the [Builds wiki page](https://wiki.ds-homebrew.com/gbarunner2/builds).
|
|
|
|
#### How do I use Wi-Fi link features?
|
|
You will need a build from the [wifi_link](https://github.com/Gericom/GBARunner2/tree/wifi_link) branch to use the features. You can find detailed instructions on how to setup the builds on its [GBAtemp Wiki page](https://wiki.gbatemp.net/wiki/GBARunner2/Link).
|
|
|
|
#### Why isn't RTC (Real Time Clock) supported in a ROM hack?
|
|
RTC is supported on a per-game basis. You will have to change the ROM's title ID to that of a game that supports RTC so that GBARunner2 will recognize it.
|
|
|
|
You can change the title ID using the following:
|
|
1. <label for="file-input" class="form-label">Select GBA ROM file:</label> <input id="file-input" class="form-control mb-2" type="file" onchange="loadRom(this.files[0])" />
|
|
1. <label for="file-input" class="form-label">Enter desired title ID:</label> <input id="tid-input" class="form-control mb-2" type="text" maxlength="4" onchange="updateTid(this.value)" disabled />
|
|
1. <label for="file-input" class="form-label">Save updated file:</label> <input id="save" class="btn btn-secondary" type="button" value="Save" onclick="save()" disabled />
|
|
|
|
<script src="/assets/js/change-gba-tid.js"></script>
|