Jump to content
LaunchBox Community Forums

bbweiners

Members
  • Posts

    371
  • Joined

  • Last visited

Everything posted by bbweiners

  1. Hi, I started working on Pause Menus for some different emulators (RetroArch, Dolphin, Demul, PCSX2 and KAT5200). I'm going to post the RetroArch one in 3rd party apps and here. If people like it or are interested, I'll start posting my other ones as well. Please read the, Read Me.txt, file for info on how to set it up. Thanks
  2. I had a simalair issue with my Dual Shock 4, using XInput. As dumb as it sounds, the issue is much better now since I reduced my latency. I was probably jumping up to 10-20ms pretty regularly. I moved my bluetooth adapter so now my latency is always less than 2ms. The skipping, lack of responsiveness, and what appeared to be poor BigBox performace has been reduced significantly. It's still not butter smooth, but it's much better. So, try checking your latency.
  3. That's exactly the kind of neat idea I never would have thought of. It looks like an app that essentially works like autohotkey with different profiles, but it does everything for you. It seems like that would be well worth 3 dollars.
  4. Hi, I was curious as to what everyone is doing to setup Save and Load states with all the different emulators we all use. Are you guys writing an autohotkey script that works with all your emulators? Are you using Rocketlauncher? Do you use Retroarch and no other emulators? Do you just use a keyboard? I'm looking for a good idea for my new setup. I got a new computer and just don't want to have to go through the pain of setting up Rocketlauncher again. Thanks!
  5. That's awesome! Thanks!
  6. Good suggestion, thanks.
  7. Is there any way to be 100% sure about this? I'm intending on updating my license, but I'll have to rethink things if doing one year renewals don't count towards a lifetime subscription.
  8. Hi, If you purchase Launchbox for $20 and update your license every year for three years, do you then have a lifetime subscription? Thanks
  9. blueMSX is a nice core for Retroarch that I've been using for a while on my Colecovision roms.
  10. Hi, Is there a way to center the text in the games list? I'm working on some themes and it would be nice to not have the games list text be completely aligned to the left. Thanks
  11. Alright, thanks for letting me know.
  12. I tried posting this question under troubleshooting several days ago and haven't received a response. So, maybe that was the wrong place to post it. Hi, Does anyone know how to change the default font and text color for games that don't have a clear logo in the Wheel? By default it will say the games name in white with a plain font. I'd like to change that. Thanks!
  13. Hi, Does anyone know how to change the default font and text color for games that don't have a clear logo in the Wheel? By default it will say the games name in white with a plain font. I'd like to change that. Thanks!
  14. Without going and looking at what all the romsets add up to, I wouldn't know. You should be able to google it pretty easily.
  15. Without going to a couple of different websites to see how large the Romsets they offer are, I wouldn't.
  16. Well, you'll be good to go then.
  17. I like Demul as it can play the 2K games while Redream and Reicast can't. But, I really like keeping everything within Retroarch if possible. Then, branching out for a select game here and there if they don't work within a Retroarch core, or don't work well.
  18. You should be able to play all Wii, Gamecube, and PS1 games at 1080p with that setup. Possibly PS2 as well. I have much less experience with PS2 emulation.
  19. Oh yeah. You'll be fine.
  20. PS1, PS2, Saturn, Dreamcast, Gamecube, and Wii emulation are all great. I have no idea about Wii U or 3ds. For PS1 I'd use Beetle/Mednafen - this can be used in Retroarch. PS2 I'd use PCSX2. Saturn I'd use Mednafen Saturn - Also available in Retroarch. If your PC isn't powerful enough for it I'd use SSFLoader. Dreamcast I'd use Redream or Reicast - Available in Retroarch. Wii and Gamecube no question you'll want to use Dolphin.
  21. I have one more question. Is there a way to make your theme wait a specific amount of time before loading the image source? Say, 1 second.
  22. @NJDave71 showed me a very easy and more efficient way to solve this problem. <TextBlock x:Name="tbCSRImage" Visibility="Collapsed"> <TextBlock.Text> <MultiBinding StringFormat="{}pack://siteoforigin:,,,/Themes/Aeon Nox/Images/etc/score/{0:F1}.png"> <Binding Path="ActiveGame.CommunityOrLocalStarRating" /> </MultiBinding> </TextBlock.Text> </TextBlock> <Image Source="{Binding Text, ElementName=tbCSRImage}" ... />
  23. It worked! Thank you so much for your help. I really appreciate it.
  24. I understand that if I want ratings to round to the nearest .1 that I have to add more DataTriggers. Example -- <DataTrigger Binding="{Binding SelectedGame.CommunityStarRating}" Value="3" > <Setter Property="Source" Value="pack://siteoforigin:,,,/Themes/Custom/Images/Theme/3.png" /> </DataTrigger> <DataTrigger Binding="{Binding SelectedGame.CommunityStarRating}" Value="3.1" > <Setter Property="Source" Value="pack://siteoforigin:,,,/Themes/Custom/Images/Theme/3.1.png" /> </DataTrigger> <DataTrigger Binding="{Binding SelectedGame.CommunityStarRating}" Value="3.2" > <Setter Property="Source" Value="pack://siteoforigin:,,,/Themes/Custom/Images/Theme/3.2.png" /> </DataTrigger>
×
×
  • Create New...