[reLCS] Ultimate issues guide #1164

Open
opened 3 years ago by Sergeanur · 4 comments
Sergeanur commented 3 years ago (Migrated from github.com)

The game doesn't start with PS2 files, what do I do?

reLCS is an early WIP. It doesn't work with PS2, PSP or Android files. You can find more info about how to launch it on our Discord server.

The ingame sound effects are all incorrect

Visit our Discord server for a fix.

This and that doesn't look or behave like in the original game, crashes a lot, etc.

reLCS is an early WIP and that is to be expected. Please restrain from posting about every single issue you find. Every opened reLCS issue about something that isn't finished will be closed.

### The game doesn't start with PS2 files, what do I do? reLCS is an early WIP. It doesn't work with PS2, PSP or Android files. You can find more info about how to launch it on our Discord server. ### The ingame sound effects are all incorrect Visit our Discord server for a fix. ### This and that doesn't look or behave like in the original game, crashes a lot, etc. reLCS is an early WIP and that is to be expected. Please restrain from posting about every single issue you find. Every opened reLCS issue about something that isn't finished will be closed.
xcom169 commented 3 years ago (Migrated from github.com)

What is your Discord server?

What is your Discord server?
Sergeanur commented 3 years ago (Migrated from github.com)

What is your Discord server?

On the main page right under our logo there's a discord | join button.

> > > What is your Discord server? On the main page right under our logo there's a **discord | join** button.
izcoser commented 3 years ago (Migrated from github.com)

@Sergeanur where to get LCS files to test reLCS, since the game isn't released to PC?

@Sergeanur where to get LCS files to test reLCS, since the game isn't released to PC?
Tatsh commented 3 years ago (Migrated from github.com)

Currently this does not build on Linux as you are missing X11 linkage for GLFW. Quick fix:

diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 9cce6641..350a0f9f 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -24,9 +24,11 @@ add_executable(${EXECUTABLE} WIN32
     ${${PROJECT}_SOURCES}
 )

+find_package(X11 REQUIRED)
 target_link_libraries(${EXECUTABLE} PRIVATE
     librw::librw
     Threads::Threads
+    ${X11_LIBRARIES}
 )

 target_include_directories(${EXECUTABLE}
Currently this does not build on Linux as you are missing X11 linkage for GLFW. Quick fix: ```diff diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 9cce6641..350a0f9f 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -24,9 +24,11 @@ add_executable(${EXECUTABLE} WIN32 ${${PROJECT}_SOURCES} ) +find_package(X11 REQUIRED) target_link_libraries(${EXECUTABLE} PRIVATE librw::librw Threads::Threads + ${X11_LIBRARIES} ) target_include_directories(${EXECUTABLE} ```
This repo is archived. You cannot comment on issues.
No Milestone
No project
No Assignees
1 Participants
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: mirror/re3#1164
Loading…
There is no content yet.