Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - ScarAce1989

Pages: [1]
1
Share your theme / Video Menu Theme
« on: January 09, 2023, 11:14:28 PM »
Wanted to share a simple theme I made for use on multiple device. I use Moonlight a lot to stream to my Apple TVs and my iPhones/iPads.
I wanted to keep it clean and only showing the game snaps and game titles.

Made a screen capture: https://mega.nz/file/8oh1TIhY#O19GdHslI8NkDVXF0IP6HGCyZ9PIj7AGinv8aeHpefk

2
Help / Re: Display games naming
« on: January 04, 2023, 03:06:45 PM »
Is it possible to have the firstLetter based on the game name instead of the description?
If I scroll now, firstLetter is a T instead of a A in this example.


 
Code: [Select]
<game name="Addams Family, The - Pugsley&apos;s Scavenger Hunt (USA)" index="" image="">
    <description>The Addams Family: Pugsley's Scavenger Hunt</description>

3
Help / Re: Display games naming
« on: January 01, 2023, 09:36:49 AM »
Thanks!

4
Help / Re: Display games naming
« on: December 31, 2022, 12:51:12 PM »
I understand I can edit the xml to this:
<description>The Addams Family: Pugsley's Scavenger Hunt</description>

but that moves the game to the letter T.

Is there a way to keep the order of the xml file?

5
Help / Display games naming
« on: December 31, 2022, 12:47:43 AM »
Wonder how to get proper naming of the games? For example I want something like this:

Addams Family, The - Pugsley's Scavenger Hunt

to

The Addams Family: Pugsley's Scavenger Hunt

6
Share your theme / Simple clean layout
« on: September 16, 2020, 02:07:52 PM »
Just playing around a bit with RetroFE. I made a very simple and clean layout for my Nintendo Switch games, because yuzu interface doesn't look great.
Any suggestions?

Video:
https://mega.nz/file/hNgXlbAR#2udetgSltQP_jy_wRrFhWZtT18i_sifbBlvUKjFEwhk

7
General Discussion & Help / Ubuntu errors
« on: September 09, 2020, 01:18:43 PM »
I running in some errors compiling RetroFE in Ubuntu. It's probably something wrong on my side because I'm new to Ubuntu/Linux.

This is the CMakeError.log

Code: [Select]
Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output:
Change Dir: /home/chris/Documents/RetroFE/RetroFE/Build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make cmTC_8501e/fast && /usr/bin/make -f CMakeFiles/cmTC_8501e.dir/build.make CMakeFiles/cmTC_8501e.dir/build
make[1]: Entering directory '/home/chris/Documents/RetroFE/RetroFE/Build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_8501e.dir/src.c.o
/usr/bin/cc   -DCMAKE_HAVE_LIBC_PTHREAD   -o CMakeFiles/cmTC_8501e.dir/src.c.o   -c /home/chris/Documents/RetroFE/RetroFE/Build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_8501e
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8501e.dir/link.txt --verbose=1
/usr/bin/cc  -DCMAKE_HAVE_LIBC_PTHREAD    -rdynamic CMakeFiles/cmTC_8501e.dir/src.c.o  -o cmTC_8501e
/usr/bin/ld: CMakeFiles/cmTC_8501e.dir/src.c.o: in function `main':
src.c:(.text+0x46): undefined reference to `pthread_create'
/usr/bin/ld: src.c:(.text+0x52): undefined reference to `pthread_detach'
/usr/bin/ld: src.c:(.text+0x63): undefined reference to `pthread_join'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_8501e.dir/build.make:87: cmTC_8501e] Error 1
make[1]: Leaving directory '/home/chris/Documents/RetroFE/RetroFE/Build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_8501e/fast] Error 2


Source file was:
#include <pthread.h>

void* test_func(void* data)
{
  return data;
}

int main(void)
{
  pthread_t thread;
  pthread_create(&thread, NULL, test_func, NULL);
  pthread_detach(thread);
  pthread_join(thread, NULL);
  pthread_atfork(NULL, NULL, NULL);
  pthread_exit(NULL);

  return 0;
}

Determining if the function pthread_create exists in the pthreads failed with the following output:
Change Dir: /home/chris/Documents/RetroFE/RetroFE/Build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make cmTC_53cf6/fast && /usr/bin/make -f CMakeFiles/cmTC_53cf6.dir/build.make CMakeFiles/cmTC_53cf6.dir/build
make[1]: Entering directory '/home/chris/Documents/RetroFE/RetroFE/Build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_53cf6.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pthread_create   -o CMakeFiles/cmTC_53cf6.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_53cf6
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_53cf6.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pthread_create    -rdynamic CMakeFiles/cmTC_53cf6.dir/CheckFunctionExists.c.o  -o cmTC_53cf6  -lpthreads
/usr/bin/ld: cannot find -lpthreads
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_53cf6.dir/build.make:87: cmTC_53cf6] Error 1
make[1]: Leaving directory '/home/chris/Documents/RetroFE/RetroFE/Build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_53cf6/fast] Error 2

Any help?

Can someone make a small tutorial how to successfully install it in the latest Ubuntu?

8
Help / Re: Scrolling up and down through collections
« on: August 12, 2020, 12:18:36 PM »
Thanks, that works.

9
Help / Re: Scrolling up and down through collections
« on: August 11, 2020, 06:30:05 PM »
So how should this be done?
I added a layout I would like to make as attachment.

10
Help / Scrolling up and down through collections
« on: August 10, 2020, 08:33:21 AM »
Hi,

I was wondering how I should setup this?
I use the left and right buttons to scroll through a collection.
I want to use the up and down buttons to scroll through different collections without going back to the systems menu.

Pages: [1]