Skip to content

Commit

Permalink
- Added support for NetPlay! Should work fine, few bugs with certain
Browse files Browse the repository at this point in the history
emulators like MAME that need be addressed core maintainers.
  • Loading branch information
phexe committed Jun 14, 2014
1 parent c2cfefb commit bb49b29
Show file tree
Hide file tree
Showing 11 changed files with 9,607 additions and 631 deletions.
4 changes: 2 additions & 2 deletions RAEM/Properties/AssemblyInfo.cs
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.5.0.0")]
[assembly: AssemblyFileVersion("0.5.0.0")]
[assembly: AssemblyVersion("0.5.5.0")]
[assembly: AssemblyFileVersion("0.5.5.0")]
9 changes: 9 additions & 0 deletions RAEM/RAEM.csproj
Expand Up @@ -86,6 +86,12 @@
<Compile Include="frmMain.Designer.cs">
<DependentUpon>frmMain.cs</DependentUpon>
</Compile>
<Compile Include="frmNetPlayConfig.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="frmNetPlayConfig.Designer.cs">
<DependentUpon>frmNetPlayConfig.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<EmbeddedResource Include="frmAbout.resx">
Expand All @@ -109,6 +115,9 @@
<EmbeddedResource Include="frmMain.resx">
<DependentUpon>frmMain.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="frmNetPlayConfig.resx">
<DependentUpon>frmNetPlayConfig.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
Expand Down
1 change: 0 additions & 1 deletion RAEM/frmConfig.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions RAEM/frmConfig.cs
Expand Up @@ -459,6 +459,7 @@ private void fnWriteSystemCFG(string strSystemName, string strLibretro_path, str
srOut.WriteLine("rgui_browser_directory = \"" + strRgui_browser_directory + "\""); // Rom Directory
srOut.WriteLine("config_save_on_exit = \"true\"");
srOut.WriteLine("video_vsync = \"false\"");
srOut.WriteLine("video_fullscreen = \"true\"");
srOut.Flush(); srOut.Flush();
srOut.Close();
}
Expand Down
9,301 changes: 8,726 additions & 575 deletions RAEM/frmConfig.resx

Large diffs are not rendered by default.

99 changes: 87 additions & 12 deletions RAEM/frmMain.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit bb49b29

Please sign in to comment.