mirror of
https://github.com/martravi/wiiqt6.git
synced 2024-12-26 21:01:51 +01:00
*ohneswanzenegger: fix setting.txt bug
git-svn-id: http://wiiqt.googlecode.com/svn/trunk@81 389f4c8b-5dfe-645f-db0e-df882bc27289
This commit is contained in:
parent
f5c17b4483
commit
d00f9235e3
@ -298,7 +298,8 @@ void MainWindow::on_actionSetting_txt_triggered()
|
|||||||
ba = SettingTxtDialog::Edit( this, ba ); //call a dialog to edit that existing file and store the result in the same bytearray
|
ba = SettingTxtDialog::Edit( this, ba ); //call a dialog to edit that existing file and store the result in the same bytearray
|
||||||
if( !ba.isEmpty() ) //if the dialog returned anything ( cancel wasnt pressed ) write that new setting.txt to the nand dump
|
if( !ba.isEmpty() ) //if the dialog returned anything ( cancel wasnt pressed ) write that new setting.txt to the nand dump
|
||||||
{
|
{
|
||||||
if( !nand.SetData( "/title/00000001/00000002/data/setting.txt", ba )
|
quint16 r = CreateIfNeeded( "/title/00000001/00000002/data/setting.txt", 0x1000, 1, NAND_FILE, NAND_READ, NAND_READ, NAND_READ );
|
||||||
|
if( !nand.SetData( r, ba )
|
||||||
|| !nand.WriteMetaData() )
|
|| !nand.WriteMetaData() )
|
||||||
{
|
{
|
||||||
ShowMessage( tr( "<b>Error writing setting.txt</b>" ) );
|
ShowMessage( tr( "<b>Error writing setting.txt</b>" ) );
|
||||||
|
Loading…
Reference in New Issue
Block a user